home *** CD-ROM | disk | FTP | other *** search
/ Shocking The Web CD-ROM / SHOCK_CD.ISO / mac / Chapter Tutorials / CaseStudies / ch14.CSAA / D4vers / csaa.dir / 00007.ls < prev    next >
Encoding:
Text File  |  1996-06-17  |  308 b   |  13 lines

  1. on enterFrame
  2.   global gSegStart, gVioConChan, gTerrainChan
  3.   set gSegStart to the ticks
  4.   if the frame <> label("tween") then
  5.     puppetSprite(gVioConChan, 0)
  6.   end if
  7.   repeat with i in gTerrainChan
  8.     if the visible of sprite i = 0 then
  9.       set the visible of sprite i to 1
  10.     end if
  11.   end repeat
  12. end
  13.